8e649dd451cbdd907256126747ee6db66a743b48,marklogic-data-hub/src/main/java/com/marklogic/hub/FlowManager.java,FlowManager,getFlow,#String#String#,155
Before Change
* @return the flow
*/
public Flow getFlow(String entityName, String flowName) {
return getFlow(entityName, flowName, null);
}
public Flow getFlow(String entityName, String flowName, FlowType flowType) {
After Change
*/
public Flow getFlow(String entityName, String flowName) {
StopWatch stopWatch = PerformanceLogger.monitorTimeInsideMethod();
Flow flow = getFlow(entityName, flowName, null);
PerformanceLogger.logTimeInsideMethod(stopWatch, this.getClass().getName(),
"getFlow", new Object[]{entityName, flowName});
return flow;